home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Xconq 7.1.0 / lib / simple.g < prev    next >
Encoding:
Text File  |  1996-04-04  |  287 b   |  14 lines  |  [TEXT/XCNQ]

  1. (game-module "simple"
  2.   (blurb "trivial game")
  3.   )
  4.  
  5. ;;; This game definition is about as simple as you
  6. ;;; can get and still have a working game.
  7.  
  8. (terrain-type plains (color "green") (char "+"))
  9.  
  10. (unit-type human (image-name "person") (char "@")
  11.   (start-with 1)
  12.   (acp-per-turn 4)
  13.   )
  14.